export declare const getMonthFirstDay: (month: number, year: number) => number; export declare const addZero: (value: number) => string; export declare const getPreviousMonth: (month: number, year: number) => number[]; export declare const getNextMonth: (month: number, year: number) => number[]; export declare const isSameMonth: (date: Date, basedate: Date) => boolean; export declare const isSameDay: (date: Date, basedate: Date) => boolean; export declare const formatValue: (computedValue: Date | null, computedRange: { start: Date | null; end: Date | null; } | null, showMonthYearPicker: boolean, selectsRange: boolean, format?: (value?: Date) => string | undefined) => string | undefined; export declare const createDate: (value: string, showMonthYearPicker: boolean, minDate?: Date, maxDate?: Date) => Date | null; export declare const createDateRange: (value: string, showMonthYearPicker: boolean) => [Date | null, Date | null]; export declare const getIsInHoveredRange: (selectsRange: boolean, constructedDate: Date, hoveredDate?: Date | null, range?: { start?: Date | null; end: Date | null; }) => boolean | null | undefined; //# sourceMappingURL=helpers.d.ts.map